7f0f0794b67f926668b63cd3675543bac6f19188,schedoscope-export/src/main/java/org/schedoscope/export/redis/RedisExportMapper.java,RedisExportMapper,setup,#Context#,61

Before Change


		valueName = conf.get(RedisOutputFormat.REDIS_EXPORT_VALUE_NAME);

		keyPrefix = RedisOutputFormat.getExportKeyPrefix(conf);
		anonFields = conf.getStrings(BaseExportJob.EXPORT_ANON_FIELDS, new String[0]);

	}

After Change


		valueName = conf.get(RedisOutputFormat.REDIS_EXPORT_VALUE_NAME);

		keyPrefix = RedisOutputFormat.getExportKeyPrefix(conf);
		anonFields = ImmutableSet.copyOf(conf.getStrings(BaseExportJob.EXPORT_ANON_FIELDS, new String[0]));
	}

	@SuppressWarnings("unchecked")